This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # include <stdio.h> | |
| int add(int a[][10],int b[][10],int n,int m,int r[10][10]) | |
| { | |
| int i,j; | |
| for(i=0;i<n;i++) | |
| { | |
| for(j=0;j<m;j++) | |
| { | |
| r[i][j]= a[i][j] + b[i][j]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # include <stdio.h> | |
| double f(double x,double y) | |
| { | |
| return (x+y); | |
| } | |
| int main() | |
| { | |
| double h=0.2; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # include <stdio.h> | |
| # include <math.h> | |
| double f(double x) | |
| { | |
| return ( exp(x*x) ); | |
| } | |
| int main() | |
| { | |
| double l1=0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # include <stdio.h> | |
| double f(double x,double y) | |
| { | |
| return (x+y); | |
| } | |
| int main() | |
| { | |
| double x0=0; | |
| double y0=1; | |
| double h=0.1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| double f(double x) | |
| { | |
| return (x*x*x - 2*x -5); | |
| } | |
| int main() | |
| { | |
| int i; | |
| // By regula falsi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # include <iostream> | |
| using namespace std; | |
| class test | |
| { | |
| public: | |
| static int f; | |
| int x; | |
| test() | |
| { | |
| f+=1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% extends theme("layout.html") %} | |
| {% import "utils.html" as utils %} | |
| {# map meta.action to font awesome classes #} | |
| {% set awesome_class = { | |
| 'REVERT': 'fa fa-undo', | |
| 'SAVE': 'fa fa-save', | |
| 'RENAME': 'fa fa-pencil-square-o', | |
| 'TRASH': 'fa fa-trash-o', | |
| } %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% extends theme("layout.html") %} | |
| {% import "utils.html" as utils %} | |
| {# map meta.action to font awesome classes #} | |
| {% set awesome_class = { | |
| 'REVERT': 'fa fa-undo', | |
| 'SAVE': 'fa fa-save', | |
| 'RENAME': 'fa fa-pencil-square-o', | |
| 'TRASH': 'fa fa-trash-o', | |
| } %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| a = document.getElementsByClassName('uiTextareaNoResize uiTextareaAutogrow _1rv'); | |
| for(var i = 0;i<10;i++) | |
| { | |
| a[0].value='Hey!'; | |
| b = document.getElementById("u_jsonp_6_6");// The id name will probably be different from you, check it out from dev-console. | |
| b.click(); | |
| } | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <title></title> | |
| <link rel="stylesheet" href=""> | |
| </head> | |
| <body> | |
| <h1>Hello</h1> |