foundational
- Thomas. 2018. Programming Elixir
- McCord, Tate, Valim. 2019. Programming Phoenix
| import java.util.Scanner; | |
| public class Kary { | |
| public static void main(String[] args) { | |
| Scanner scan = new Scanner(System.in); | |
| long i = Integer.parseInt(scan.nextLine()); | |
| int k = Integer.parseInt(scan.nextLine()); | |
| if(k < 2 || k > 16) return; | |
foundational
| #Switched to a database | |
| mysql> USE GVKCV; | |
| Database changed | |
| #Creating table student | |
| mysql> create table student | |
| -> (ROLLNO INT NOT NULL PRIMARY KEY, | |
| -> NAME CHAR(10), | |
| -> TELUGU CHAR(10), | |
| -> HINDI CHAR(10), |
| #include <cmath> | |
| #include <cstdio> | |
| #include <vector> | |
| #include <iostream> | |
| #include <algorithm> | |
| using namespace std; | |
| int main() { | |
| int n{}, q{}; |
| #include<stdio.h> | |
| #include<conio.h> | |
| #define INFINITY 9999 | |
| #define MAX 10 | |
| void dijikstra(int G[MAX][MAX], int n, int startnode) { | |
| int cost[MAX][MAX], distance[MAX], pred[MAX]; | |
| int visited[MAX], count, mindistance, nextnode, i,j; | |
| for(i = 0; i < n; i++) | |
| for(j = 0; j < n; j++) |
| #include<stdio.h> | |
| #include<conio.h> | |
| #include<stdlib.h> | |
| int i, j, k, a, b, u, v, n, ne=1; | |
| int min, mincost=0, cost[9][9], parent[9]; | |
| int find(int i) { | |
| while(parent[i]) | |
| i = parent[i]; | |
| return i; | |
| } |
| #include<stdio.h> | |
| char TorF(int i) { | |
| if (i == 1) | |
| return 'T'; | |
| else | |
| return 'F'; | |
| } | |
| int main() { |
| #include<stdio.h> | |
| char print(int i) { | |
| if (i == 1) | |
| return 'T'; | |
| else | |
| return 'F'; | |
| } | |
| int main() { |
| #include<stdio.h> | |
| int main() { | |
| int i, j; // Counters | |
| int r, c; | |
| printf("Enter size for the sparse matrix (m * n): "); | |
| scanf("%d %d", &r, &c); | |
| int A[r][c]; |
| #include<stdio.h> | |
| #include<stdlib.h> | |
| int main() { | |
| int r1, c1, r2, c2; | |
| int i, j, k; /* Counters */ | |
| printf("Enter size of the 1st matrix (m * n):\n"); | |
| scanf("%d %d", &r1, &c1); | |
| int A[r1][c1]; |