Mercurial > codedump
comparison garf.cpp @ 1:05978f04869b
Add files via upload
committer: GitHub <noreply@github.com>
author | Paper <37962225+mrpapersonic@users.noreply.github.com> |
---|---|
date | Mon, 04 Jan 2021 13:52:42 -0500 |
parents | |
children | 37f231f85a67 |
comparison
equal
deleted
inserted
replaced
0:bfa16fc2d0a5 | 1:05978f04869b |
---|---|
1 // garf simulator | |
2 #include <iostream> | |
3 #include <stdio.h> | |
4 #include <string.h> | |
5 | |
6 int main(){ | |
7 char answer[100]; | |
8 std::cout << "would you like to monetize 1123.best?: "; | |
9 gets(answer); | |
10 if(answer=="yes"){ | |
11 std::cout << "it's a yes!"; | |
12 }else{ | |
13 std::cout << "it's a yes!"; | |
14 } | |
15 return 0; | |
16 } |