#coding
Read more stories on Hashnode
Articles with this tag
import java.util.Scanner; public class Main { public static void main(String[] args) { System.out.println("Welcome to Number Guessing...
When we heard the discipline word instantly one thing came to mind "Yeah Yeah I am very much a discipline guy". But we know internally that we are...
#include<stdio.h> #include<stdlib.h> #include<time.h> int main(){ int x,num; srand(time(0)); num = rand()%20+1; int guess_count = 1; ...