From the incredibly asinine idea of disposable AI datacenter satellites launching into low Earth orbit to building out yet another unnecessary mobile network, this con-man will do ANYTHING to scam investor suckers and get his stock prices up.
This stinks of panic to me. Good.
The "Drop" feature will also be retired 👇
https://x.com/i/status/2067838711870439583
.
And here I explain a workaround to restore Edge's sidebar app list 👇
https://x.com/i/status/2065149359314829650
.
Question
showlow
Can anyone with experience in C help me convert this code?
#include <iostream>
using namespace std;
int main()
{int m,d,y;
cout<<"Enter month: ";
cin>>m;
cout<<"Enter day: ";
cin>>d;
cout<<"Enter year: ";
cin>>y;
cout<<"The day after "<<m<<"/"<<d<<"/"<<y<<" is: ";
d++;
if(d>30)
{d=1;
m++;
if(m>12)
{m=1;
y++;
}
}
cout<<m<<"/"<<d<<"/"<<y<<endl;
system("pause");
return 0;
}
Link to comment
https://www.neowin.net/forum/topic/1072887-converting-c-to-c/Share on other sites
5 answers to this question
Recommended Posts