• 0

Converting C++ to C


Question

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

  • 0


#include<stdio.h>
main()
{
int m, d, y;
printf("Enter month");
scanf (&m);
printf ("Enter day");
scanf (&d);
printf ("Enter year");
scanf (&y);
printf ("The day after ", m, "/ ", d, "/ ", y, " is: ");
d++;
if (d>30)
{
d=1;
}
m++;
if (m>12)
{
m=1;
}
y++;
printf (m," / ",d," / ",y);

return 0;
}
[/CODE]

this is a half ass job because I don't remember the syntax correctly but will make changes as I read google ...

The code might not compile, I cannot do this at work and the code is sloppy

Also, there are shortcuts to the code, and can be optimized as I have written it is just a high school way of doing things

Why do you increment day after

[CODE]cout<<"The day after "<<m<<"/"<<d<<"/"<<y<<" is: ";[/CODE]

Conversely you could do the following

[CODE]
#include<stdio.h>
main()
{
int m, d, y;
printf("Enter month, day, year separated by comma - hit Enter when done: ");
scanf (" %d, %d, %d", &m, &d, &y);
printf ("The day after ", m, "/ ", d, "/ ", y, " is: ");
BLAH
}
[/CODE]

  • 0

Im not entirely sure the instructor said that would be needed at the end of the C++, so I've got the code working and cleaned up but instead of the display being 11/2/2011 is 11/3/2011 it is 12/3/2012.

Here is the code if someone can see where I am messing up within the if statements

#include <stdio.h>

#include <stdlib.h>

#pragma warning (disable:4996)

main()

{

int m, d, y;

printf("Enter month");

scanf("%d", &m);

printf("Enter day");

scanf("%d", &d);

printf("Enter year");

scanf("%d", &y);

printf ("The day after %d/%d/%d is", m,d,y);

d++;

{

if (d>30)

d=1;

m++;

if (m>12)

m=1;

y++;

}

printf ("%d/%d/%d", m,d,y);

system("pause");

return 0;

}

P.S. is there anything I should put around my code to distinguish it?

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • VidCoder 12.20 by Razvan Serea  VidCoder is a DVD/Blu-ray ripping and video transcoding application for Windows. It uses HandBrake as its encoding engine. Calling directly into the HandBrake library gives it a more rich UI than the official HandBrake Windows GUI. VidCoder can rip DVDs but does not defeat the CSS encryption found in most commercial DVDs. You’ll need the NET 8 Desktop Runtime. If you don’t have it, VidCoder will prompt you to download and install it. The Portable version is self-contained and does not require any .NET Runtime to be installed. You do not need to install HandBrake for VidCoder to work. Feature list: Multi-threaded MP4, MKV containers Completely integrated encoding pipeline: everything is in one process and no huge intermediate temporary files H.264, H.265, MPEG-4, MPEG-2, VP8, Theora video Hardware-accelerated encoding with AMD VCE, Nvidia NVENC and Intel QuickSync AAC, MP3, Vorbis, AC3, FLAC audio encoding and AAC/AC3/MP3/DTS/DTS-HD passthrough Target bitrate, size or quality for video 2-pass encoding Decomb, detelecine, deinterlace, rotate, reflect, chroma smooth, colorspace filters Powerful batch encoding with simultaneous encodes Customizable Pickers to automatically pick audio and subtitle tracks, destination, titles and more Instant source previews Creates small encoded preview clips Pause, resume encoding VidCoder 12.20 changes: Updated HandBrake core to 1.11.2. Download: VidCoder 12.20 | 47.0 MB (Open Source) Download: Portable VidCoder 12.19 | 89.3 MB Link: VidCoder Home Page | Github | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Too soon, I'm still not over this death!
    • Normally, I admit when a title is clickbait (unfortunately, it's become somewhat necessary to compete against AI-dominated news sections today), but in this case, all supported versions is implied and doesn't need to be spelled out in the title. Of course, I'm covering a Patch Tuesday update bug that is only available to supported Windows SKUs. All our coverage relates to supported Windows software and SKUs only unless we expressly state that it's "unsupported", "unofficial", or "third-party". I'm sorry, but supported/official SKUs don't need to be spelled out as such in every Neowin headline.
    • ALL versions or ALL SUPPORTED versions? Neowin does it again.
  • Recent Achievements

    • Week One Done
      Jordan Smith earned a badge
      Week One Done
    • Reacting Well
      BizSAR earned a badge
      Reacting Well
    • First Post
      AndreaB earned a badge
      First Post
    • Week One Done
      Huge Trailer earned a badge
      Week One Done
    • Week One Done
      Classifyskilleducation earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      595
    2. 2
      +Edouard
      185
    3. 3
      PsYcHoKiLLa
      77
    4. 4
      Michael Scrip
      73
    5. 5
      Steven P.
      66
  • Tell a friend

    Love Neowin? Tell a friend!